home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earcd / grafica / video easel / scripts / startup.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-09  |  841b  |  25 lines

  1. /*************************************************************************
  2.  **                                                                     **
  3.  ** The Video-Easel Startup-Script                                      **
  4.  ** Put REXX-commandos to be executed at startup here...                **
  5.  **  © THOR 1995                                                        **
  6.  *************************************************************************/
  7.  
  8. /* Supply this library for drawcircle... */
  9. call addlib('rexxmathlib.library',0,-30,0) 
  10.  
  11. 'addrxmenu' 'drawcircle.rexx' '"Draw Circle"'
  12. 'addrxmenu' 'importxlife.rexx' '"Import XLife..."'
  13.  
  14. /* Produce nicer title... */
  15.  
  16. 'offverify'
  17. 'openapp' 'Title'
  18. 'waitcomplete'
  19. 'openpic' 'Title.pic'
  20. 'waitcomplete'
  21.  
  22. 'onverify'
  23. 'menu' 'Project' 'About'
  24. /* Add more menus or other rexx-commandos here... */
  25.